home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Idea Engine
/
The Idea Engine.iso
/
pc
/
white6.dir
/
00047_Script_47
< prev
next >
Wrap
Text File
|
1995-10-16
|
1KB
|
65 lines
--on startMovie
-- global printer
--
-- if objectP(printer) = false then
-- openxlib "PrintOMatic Lite XObj"
-- put PrintOMatic_Lite(mNew) into printer
-- printer(mRegister,"13054542-911")
-- closexlib "PrintOMatic Lite XObj"
-- end if
--
-- set castext = 1
--
-- if not objectP(printer) then
--
-- Alert "There is no currently selected printer. Printing features will be disabled."┬
--&return&return&"Error code = "&string(printer)
--
-- end if
--
--end startMovie
--
--
--on stopMovie
-- global printer
--
-- if objectp(printer) then printer(mDispose)
--
--end stopMovie
--
--on closeWindow
-- stopmovie
-- tell the stage to cleanupMIAW
--end closeWindow
--
--
--
--
--
--on printext
-- global printer
--
-- if not objectP(printer) then
-- Alert "There is no currently selected printer. Printing features are disabled."
-- else
-- cursor 4
-- put the mouseCast into castext
--
-- put the text of cast castext into txt
--
--
-- printer(mSetTextFont,"courier")
-- printer(mSetTextSize,10)
-- printer(mSetTextStyle,"normal")
-- printer(mAppendText,line 1 to (the number of lines in txt) of txt)
--
-- cursor -1
--
-- if printer (mDoJobSetup) = true then
-- updatestage
-- printer(mPrint)
-- end if
--
-- end if
--
--end